projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
615cec1
)
Fix typo in lisp.h reordering patch
author
Paul Eggert
<eggert@cs.ucla.edu>
Sun, 25 Dec 2016 18:12:39 +0000
(10:12 -0800)
committer
Paul Eggert
<eggert@cs.ucla.edu>
Sun, 25 Dec 2016 18:13:10 +0000
(10:13 -0800)
* src/lisp.h (XUNTAG) [!USE_LSB_TAG]: Remove duplicate defn.
Reported by Eli Zaretskii (Bug#25128#19).
src/lisp.h
patch
|
blob
|
history
diff --git
a/src/lisp.h
b/src/lisp.h
index 23d3ae4ff3133e0ad35acf8bc16ceccb29aa1ca2..dc2c7a60085f6ebeea4b1ebc2fc4509ac421391b 100644
(file)
--- a/
src/lisp.h
+++ b/
src/lisp.h
@@
-996,14
+996,6
@@
XFASTINT (Lisp_Object a)
return n;
}
-/* Extract A's pointer value, assuming A's type is TYPE. */
-INLINE void *
-XUNTAG (Lisp_Object a, int type)
-{
- intptr_t i = USE_LSB_TAG ? XLI (a) - type : XLI (a) & VALMASK;
- return (void *) i;
-}
-
#endif /* ! USE_LSB_TAG */
/* Extract A's value as an unsigned integer. */